home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mnthlp95 / source / s.src < prev    next >
Text File  |  1992-08-04  |  1KB  |  47 lines

  1. screen (capsensitive("Syield"))
  2. NAME
  3.     Syield - give up the processor
  4.  
  5. SYNOPSIS
  6.     void Syield(void);
  7.  
  8. DESCRIPTION
  9.     Syield gives up control of the processor temporarily.
  10.  
  11. SEE ALSO
  12.     \#Pause\#, \#Fselect\#
  13.     
  14. BUGS
  15.     Doing Syield in a tight loop can still consume a fair amount
  16.     of processor time. Use \#Fselect\# or \#Talarm\# and \#Pause\# instead
  17.     if possible.
  18.     
  19. Last change: Oct. 1, 1991\end
  20.  
  21. screen (capsensitive("Sysconf"))
  22. NAME
  23.     Sysconf - get information about operating system configuration
  24.  
  25. SYNOPSIS
  26.     LONG Sysconf(WORD n);
  27.  
  28. DESCRIPTION
  29.     Sysconf returns information about various limits or capabilities 
  30.     of the currently running version of MiNT. The variable n controls 
  31.     which limit or capability is being queried, as follows:
  32.  
  33.         n   Value Returned
  34.  
  35.        -1   return max. legal value for n in Sysconf(n)
  36.         0   return max. number of memory regions per process
  37.         1   return max. length of Pexec() command line string
  38.         2   return max. number of open files per process
  39.         3   return number of supplementary group id's
  40.         4   return max. number of processes per user
  41.     If any of these items are unlimited, then 0x7fffffffL is returned.
  42.  
  43. SEE ALSO
  44.     \#Dpathconf\#
  45.     
  46. Last change: Oct. 1, 1991\end
  47.